Telegram Group & Telegram Channel
🌲 #newfeature
Compiler warnings
Warning messages are now issued in certain circumstances when you add a script to a chart. This is one example, for cases where you initialize a new instance of a global variable in a local scope with = instead of assigning the global scope variable a new value using :=. We called those "silent killers" because they were rarely intentional, yet sometimes difficult to spot when debugging code.

Here is an example of code that will generate a warning when you add it to a chart:
//@version=4
study("")
a = 1
if close > open
a = 2
plot(a)

In this case, variable a will never plot with a value of 2 because it is initialized in the if statement's local scope and disappears from view when the block ends. The coder's intention would have required, instead:
//@version=4
study("")
a = 1
if close > open
a := 2
plot(a)



tg-me.com/PineCodersSquawkBox/19
Create:
Last Update:

🌲 #newfeature
Compiler warnings
Warning messages are now issued in certain circumstances when you add a script to a chart. This is one example, for cases where you initialize a new instance of a global variable in a local scope with = instead of assigning the global scope variable a new value using :=. We called those "silent killers" because they were rarely intentional, yet sometimes difficult to spot when debugging code.

Here is an example of code that will generate a warning when you add it to a chart:

//@version=4
study("")
a = 1
if close > open
a = 2
plot(a)

In this case, variable a will never plot with a value of 2 because it is initialized in the if statement's local scope and disappears from view when the block ends. The coder's intention would have required, instead:
//@version=4
study("")
a = 1
if close > open
a := 2
plot(a)

BY PineCoders Squawk Box


Warning: Undefined variable $i in /var/www/tg-me/post.php on line 283

Share with your friend now:
tg-me.com/PineCodersSquawkBox/19

View MORE
Open in Telegram


PineCoders Squawk Box Telegram | DID YOU KNOW?

Date: |

Telegram announces Anonymous Admins

The cloud-based messaging platform is also adding Anonymous Group Admins feature. As per Telegram, this feature is being introduced for safer protests. As per the Telegram blog post, users can “Toggle Remain Anonymous in Admin rights to enable Batman mode. The anonymized admin will be hidden in the list of group members, and their messages in the chat will be signed with the group name, similar to channel posts.”

At a time when the Indian stock market is peaking and has rallied immensely compared to global markets, there are companies that have not performed in the last 10 years. These are definitely a minor portion of the market considering there are hundreds of stocks that have turned multibagger since 2020. What went wrong with these stocks? Reasons vary from corporate governance, sectoral weakness, company specific and so on. But the more important question is, are these stocks worth buying?

PineCoders Squawk Box from fr


Telegram PineCoders Squawk Box
FROM USA